home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / blit.zip / BLIT.H < prev    next >
C/C++ Source or Header  |  1988-02-21  |  343b  |  20 lines

  1. struct point {
  2.     int h, v;
  3. };
  4.  
  5. struct rect {
  6.         int left, top, right, bot;
  7. };
  8.  
  9. struct bitmap {
  10.     struct rect bounds;
  11.     int bytes;
  12.     void far *pntr;
  13. };
  14.  
  15. extern void pset_verb(), preset_verb(), and_verb(), and_not_verb(),
  16. or_verb(), or_not_verb(), xor_verb();
  17.  
  18.  
  19. void blit(struct bitmap *src, struct bitmap *dest, void (*style)());
  20.